home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #13 / CD 13 (Black) - 2001.iso / K-CS.DCR / 00280_Hilite næste tre.ls < prev    next >
Encoding:
Text File  |  2001-08-24  |  652 b   |  19 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5.   set the visible of sprite (the currentSpriteNum + 3) to 0
  6. end
  7.  
  8. on mouseEnter me
  9.   set the visible of sprite (the currentSpriteNum + 1) to 1
  10.   set the visible of sprite (the currentSpriteNum + 2) to 1
  11.   set the visible of sprite (the currentSpriteNum + 3) to 1
  12. end
  13.  
  14. on mouseLeave me
  15.   set the visible of sprite (the currentSpriteNum + 1) to 0
  16.   set the visible of sprite (the currentSpriteNum + 2) to 0
  17.   set the visible of sprite (the currentSpriteNum + 3) to 0
  18. end
  19.